{% extends "base.html" %} {% block content %}
Your Score: {{ attempt.score }} / {{ attempt.max_score }}
{% if attempt.max_score %}Percentage: {{ attempt.score|floatformat:2 }} / {{ attempt.max_score }} = {{ attempt.score|divisibleby:attempt.max_score|floatformat:2 }}%
{% endif %}Started: {{ attempt.started_at|date:"M d, Y H:i" }}
Finished: {{ attempt.finished_at|date:"M d, Y H:i" }}
Explanation: {{ answer.question.explanation }}
{% endif %}